be8ada74ceb969872f71b70cf0bc0e425bd35179,portal-impl/src/com/liferay/portal/model/impl/UserImpl.java,UserImpl,getDisplayURL,#String#String#boolean#,182

Before Change


		String profileFriendlyURL = getProfileFriendlyURL();

		if (Validator.isNotNull(profileFriendlyURL)) {
			StringBundler sb = new StringBundler(3);

			sb.append(portalURL);
			sb.append(PortalUtil.getPathContext());
			sb.append(profileFriendlyURL);

			return sb.toString();
		}

		Group group = getGroup();

After Change


			return StringPool.BLANK;
		}

		String profileFriendlyURL = getProfileFriendlyURL();

		if (Validator.isNotNull(profileFriendlyURL)) {
			return portalURL.concat(PortalUtil.getPathContext()).concat(
				profileFriendlyURL);
		}

		Group group = getGroup();